home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / isetl.arc / ops1.t < prev    next >
Text File  |  1987-08-20  |  369b  |  41 lines

  1. 1;
  2. 2.5;
  3. "abc";
  4. {};
  5. [];
  6. om;
  7. [1,2,3];
  8. {1,3,5,2,6,1,2,3};
  9.  
  10. [1..10];
  11. [1,3..10];
  12. [1,3..9];
  13. [1,3..0];
  14. [1..0];
  15. [10,9..1];
  16.  
  17. 4+2;
  18. 4.0 + 2.0;
  19. "abc" + "xyz";
  20. [1,2,3] + [4,5,6];
  21. {1,2,3,4,5} + {3,4,5,6,7};
  22.  
  23. 4-2;
  24. 4.0 - 2.0;
  25. {1,2,3,4,5} - {3,4,5,6,7};
  26.  
  27. 4*2;
  28. 4.0 * 2.0;
  29. "abc" * 3;
  30. [1,2,3] * 3;
  31. {1,2,3,4,5} * {3,4,5,6,7};
  32.  
  33. 5 / 2;
  34. 4 / 2;
  35. 5 div 2;
  36. 5 mod 2;
  37. 5.0 / 2.0;
  38.  
  39. 2**10;
  40. 2.0 ** 0.5;
  41.